home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / GBCOPIER.ZIP / GBREAD.ARJ / README < prev   
Text File  |  1995-10-20  |  3KB  |  76 lines

  1. Here are the plans for making a Gameboy reader (and writer) for an IBM PC
  2. parallel port. For the time, it allows to read cartridges (of any size, i.e. it
  3. can change banks). It also allows to read/write the backup SRAM of the
  4. cartridges which have one (you'll be able to share saved games the same way you
  5. share passwords).
  6.  
  7. In a near future, I plan to build a writable cartridge containing some
  8. backed-up memory, and you should be able to "upload" games to this cartridge
  9. (using the same GB reader) and play them on the real GB. I hope people will
  10. start writing their own games...
  11.  
  12. The included poscript files contain the PCB, which is unfortunately 2-sided and
  13. have very narrow tracks (it was generated by an autorouter). I hope somebody
  14. with a good layout program and some time will make another PCB with broader
  15. tracks and less bridges because is it quite impossible to make this board
  16. without professional machines. If there is enough requests, I'll make it
  17. myself, but it should take some time since I'm very busy these days.
  18.  
  19. U2 and U3 are used for storing the adresses. U5 stores the data that will be
  20. written to the cartridge. It is also used for switching banks, since banks are
  21. switched by writing at a specified memory address.
  22.  
  23. U4 allows reading the data coming from the cartridge. Since we have only 4
  24. input lines, we read one byte in two operations.
  25.  
  26. U8 is used for controlling the other chips (load data, enable IC...). Is should
  27. be fairly easy to understand if you look at the schematics.
  28.  
  29.  
  30. If anybody is interested in building the GB reader, here are some instructions:
  31.  
  32. First, you'd better use HCT chips since the parallel ouputs of the PC have TTL
  33. levels. HC chips should also be OK, especially with the recent PCs.
  34.  
  35. For the chips U2, U3, U4 ,U5, U7 and U8, I use IC sockets with built-in
  36. capacities between GND and VCC. You should find them in any electronic shop.
  37.  
  38. U1 is the connector for the GB cartridges. Read the FAQ for a place where you
  39. can buy it.
  40.  
  41. J1 is a DB25 female connector. Be sure to use a short parallel cable between
  42. the PC and the GB reader. I use a 20cm cable and it works fine.
  43.  
  44. U10 is a standard 9V battery. If you have a 5V source, you do not need U10, U6,
  45. D1, C1, C2 and C3.
  46.  
  47.  
  48. I've written a small program that allows reading the cartridges. You can
  49. basically analyse the cartridge, i.e. read the header (1), save the ROM in a
  50. file (2), backup the SRAM in a file (3) or restore the SRAM (4). It also
  51. contains a primitive test function (5).
  52.  
  53. (1)    read -a
  54. (2)    read -s mario.gb
  55. (3)    read -b mario.sav
  56. (4)    read -r mario.sav
  57. (5)    read -t
  58.  
  59.  One of the biggest problem I had is that I couldn't read the SRAM, either with
  60. MBC1 or MBC2. It's only with a logic analyser that I found you have to write
  61. 0x0A at the address 0x00 in order to "initialize" the MBC.  Only after that you
  62. can read/write the SRAM.
  63.  
  64.  With MBC1, the program reads the whole SRAM even though a small part is
  65. normally used as back-up memory. With MBC1, although the 4 lower bits of each
  66. byte is used, I save the whole byte to keep the program simpler.
  67.  
  68.  
  69. If you have any question or remark, feel free to mail me at:
  70.  
  71.     felber@di.epfl.ch
  72.  
  73.  
  74. P.S.
  75.     Of course, it is illegal to distribute copyrighted games ;-)
  76.